home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / os2 / rsynth1.zip / hplay.c < prev    next >
Text File  |  1995-12-17  |  273b  |  24 lines

  1. #include <config.h>
  2. #include <stdio.h>
  3. #include "proto.h"
  4. #include "getargs.h"
  5. #include "hplay.h"
  6.  
  7. long samp_rate = 8000;
  8.  
  9. int
  10. audio_init(int argc, char **argv)
  11. {
  12.  return (argc);
  13. }
  14.  
  15. void
  16. audio_term(void)
  17. {
  18. }
  19.  
  20. void
  21. audio_play(int n, short *data)
  22. {
  23. }
  24.